home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / extra / strupper.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  226b  |  22 lines

  1.  
  2. /*
  3.  *  Convert string to upper case
  4.  */
  5.  
  6. char *
  7. strupper(str)
  8. char *str;
  9. {
  10.     char c;
  11.     char *base = str;
  12.  
  13.     while (c = *str) {
  14.     if (c >= 'a' && c <= 'z')
  15.         *str = c + ('A' - 'a');
  16.     ++str;
  17.     }
  18.     return(base);
  19. }
  20.  
  21.  
  22.